From: Keir Fraser Date: Wed, 9 Jun 2010 06:55:19 +0000 (+0100) Subject: xend: Remove use of non-existent xc.handle() function. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11973 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=d2a6ffdc548bac8be83e4be49ced5474b2b1acd2;p=xen.git xend: Remove use of non-existent xc.handle() function. Signed-off-by: Keir Fraser --- diff --git a/tools/python/xen/xend/XendCheckpoint.py b/tools/python/xen/xend/XendCheckpoint.py index 1cb1cab1b7..10ed67f807 100644 --- a/tools/python/xen/xend/XendCheckpoint.py +++ b/tools/python/xen/xend/XendCheckpoint.py @@ -360,7 +360,7 @@ class RestoreInputHandler: def forkHelper(cmd, fd, inputHandler, closeToChild): - child = xPopen3(cmd, True, -1, [fd, xc.handle()]) + child = xPopen3(cmd, True, -1, [fd]) if closeToChild: child.tochild.close()